home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / lftp.conf < prev    next >
Text File  |  2009-10-13  |  4KB  |  95 lines

  1. ## some useful aliases
  2. alias dir ls
  3. alias less more
  4. alias zless zmore
  5. alias bzless bzmore
  6. alias reconnect "close; cache flush; cd ."
  7. alias edit "eval -f \"get $0 -o ~/.lftp/edit.tmp.$$ && shell \\\"cp -p ~/.lftp/edit.tmp.$$ ~/.lftp/edit.tmp.$$.orig && $EDITOR ~/.lftp/edit.tmp.$$ && test ~/.lftp/edit.tmp.$$ -nt ~/.lftp/edit.tmp.$$.orig\\\" && put ~/.lftp/edit.tmp.$$ -o $0; shell rm -f ~/.lftp/edit.tmp.$$*\""
  8.  
  9. ## make prompt look better
  10. set prompt "lftp \S\? \u\@\h:\w> "
  11. ## some may prefer colors (contributed by Matthew <mwormald@optusnet.com.au>)
  12. #set prompt "\[\e[1;30m\][\[\e[0;34m\]f\[\e[1m\]t\[\e[37m\]p\[\e[30m\]] \[\e[34m\]\u\[\e[0;34m\]\@\[\e[1m\]\h\[\e[1;30m\]:\[\e[1;34m\]\w\[\e[1;30m\]>\[\e[0m\] "
  13. ## Uncomment the following two lines to make switch cls and ls, making
  14. ## cls the default.
  15. #alias ls command cls
  16. #alias hostls command ls
  17.  
  18. ## default protocol selection
  19. #set default-protocol/ftp.*    ftp
  20. #set default-protocol/www.*    http
  21. #set default-protocol/localhost    file
  22.  
  23. ## this makes lftp faster but doesn't work with some sites/routers
  24. #set ftp:sync-mode off
  25.  
  26. ## synchronous mode for broken servers and/or routers
  27. set sync-mode/ftp.idsoftware.com on
  28. set sync-mode/ftp.microsoft.com on
  29. set sync-mode/sunsolve.sun.com on
  30. ## extended regex to match first server message for automatic sync-mode.
  31. set auto-sync-mode "icrosoft FTP Service|MadGoat|MikroTik"
  32.  
  33. ## if default ftp passive mode does not work, try this:
  34. # set ftp:passive-mode off
  35.  
  36. ## Set this to follow http redirections
  37. set xfer:max-redirections 10
  38.  
  39. ## Proxy can help to pass a firewall
  40. ## Environment variables ftp_proxy, http_proxy and no_proxy are used to
  41. ## initialize the below variables automatically. You can set them here too.
  42. ##
  43. ## ftp:proxy must communicate with client over ftp protocol, squid won't do.
  44. ## This can be e.g. TIS-FWTK or rftpd. User and password are optional.
  45. # set ftp:proxy ftp://[user:pass@]your_ftp_proxy:port
  46. ## ...but squid still can be used to access ftp servers, using hftp protocol:
  47. # set ftp:proxy http://your.squid.address:port
  48. ## ...if squid allows CONNECT to arbitrary ports, then you can use CONNECT
  49. ## instead of hftp:
  50. # set ftp:use-hftp no
  51. ##
  52. ## no proxy for host
  53. # set ftp:proxy/local_host ""
  54. ## or domain
  55. # set ftp:proxy/*.domain.com ...
  56. ##
  57. ## http:proxy must communicate with client over http protocol, e.g. squid.
  58. ## Default port is 3128.
  59. # set http:proxy your_http_proxy[:port]
  60. ## hftp:proxy must also be an http proxy. It is used for FTP over HTTP access.
  61. # set hftp:proxy your_http_proxy[:port]
  62. ##
  63. ## net:no-proxy disables proxy usage for list of domains.
  64. # set net:no-proxy .domain.com,.otherdom.net
  65.  
  66. ## If you don't have direct ftp access, this setting can be useful to select
  67. ## hftp instead of ftp automatically.
  68. # set ftp:proxy http://your.http.proxy:port
  69.  
  70. ## This can be used for automatic saving of configuration
  71. # set at-exit "set > ~/.lftp/settings"
  72. # source ~/.lftp/settings
  73.  
  74. ## and this is for remembring last site
  75. ## (combine with previous rule if you want)
  76. # set at-exit "bo a last"
  77. # open last
  78.  
  79. ## Terminal strings to set titlebars for terminals that don't
  80. ## properly specify tsl and fsl capabilities.
  81. ## Use cmd:set-term-status to enable this.
  82. set cmd:term-status/*screen* "\e_\T\e\\"
  83. set cmd:term-status/*xterm* "\e[11;0]\e]2;\T\007\e[11]"
  84. set cmd:term-status/*rxvt* "\e[11;0]\e]2;\T\007\e[11]"
  85. # set cmd:set-term-status on
  86.  
  87. ## If you don't like advertising lftp or servers hate it, set this:
  88. # set ftp:anon-pass "mozilla@"
  89. # set ftp:client ""
  90. # set http:user-agent "Mozilla/4.7 [en] (WinNT; I)"
  91.  
  92. # try inet6 before inet
  93. set dns:order "inet6 inet"
  94.  
  95.